SimplePlanetRegionInfo
BeaconCount
The amount of beacons in the region at the time of the scan.
It is of the type number
.
Color
The primary color of the planet.
It is of the type Color3
.
Gravity
The gravity of the planet.
It is of the type number
.
HasAtmosphere
Whether the planet has an atmosphere.
It is of the type boolean
.
HasRings
Whether the planet has planetary rings.
It is of the type boolean
.
Name
The name of the planet.
It is of the type string
.
Resources
The resources that can be found on the planet.
It is an array whose values are of the type string
.
SubType
The type of the planet, such as Desert
, Terra
, EarthLike
, etc.
It is of the type PlanetType
.
TidallyLocked
Whether the planet is tidally locked, meaning, whether it has a day/night cycle.
It is of the type boolean
.
Type
The type of the region.
It is always the string Planet
.
Luau Type
This is the luau type for SimplePlanetRegionInfo
. It may help clear up mistranslations from the raw data to the wiki page (as it is an automatic process).
export type SimplePlanetRegionInfo = {
HasAtmosphere: boolean,
Type: "Planet",
Color: Color3,
Gravity: number,
SubType: PlanetType,
BeaconCount: number,
Name: string,
Resources: { string },
TidallyLocked: boolean,
HasRings: boolean,
}